[QUIZ] Check your understanding of SQL - Part 2
- Question 1: In SQL, how to insert a new record into the "Persons" table?
- INSERT INTO Persons VALUES ('Jimmy', 'Jackson')
- INSERT VALUES ('Jimmy', 'Jackson') INTO Persons
- INSERT ('Jimmy', 'Jackson') INTO Persons
-
- Question 2: In SQL, how to insert the record "LastName" worth "Olsen" in the "Persons" table?
- INSERT ('Olsen') INTO Persons (LastName)
- INSERT INTO Persons ('Olsen') INTO LastName
- INSERT INTO Persons (LastName) VALUES ('Olsen')
-
- Question 3: How to change "Hansen" to "Nilsen" in the "LastName" column in the "Persons" table?
- MODIFY Persons SET LastName = 'Nilsen' WHERE LastName = 'Hansen'
- UPDATE Persons SET LastName = 'Nilsen' WHERE LastName = 'Hansen'
- MODIFY Persons SET LastName = 'Hansen' INTO LastName = 'Nilsen
- UPDATE Persons SET LastName = 'Hansen' INTO LastName = 'Nilsen'
-
- Question 4: In SQL, how to delete the "Peter" record from the "FirstName" column in the "Persons" table?
- DELETE FirstName = 'Peter' FROM Persons
- DELETE ROW FirstName = 'Peter' FROM Persons
- DELETE FROM Persons WHERE FirstName = 'Peter'
-
- Question 5: In SQL, how to return the number of records in the "Persons" table?
- SELECT COLUMNS (*) FROM Persons
- SELECT COUNT (*) FROM Persons
- SELECT LEN (*) FROM Persons
- SELECT NO (*) FROM Persons
-
- Question 6: Where is the most popular type of JOIN?
- INNER JOIN
- INSIDE JOIN
- JOINED TABLE
- JOINED
-
- Question 7: Which operator is used to retrieve data in a range?
- RANGE
- BETWEEN
- WITHIN
-
- Question 8: The NOT NULL constraint does not accept a null value column.
- It's correct
- False
-
- Question 9: Which clauses are used to find values according to certain patterns?
- LIKE
- GET
- FROM
-
- Question 10: Which SQL statement is used to create the table in the database?
- CREATE DB
- CREATE TABLE
- CREATE DATABASE TAB
- CREATE DATABASE TABLE
-
4.4 ★ | 5 Vote
You should read it
- [QUIZ] Test your understanding of SQL - Part 5
- [QUIZ] Test your understanding of SQL - Part 1
- [QUIZ] Test your understanding of SQL - Part 6
- [QUIZ] Test your understanding of SQL - Part 7
- Test about database security P8
- What do you know about NoSQL Database?
- eQuiz - Multiple choice test on SQL
- Test about database security P12
May be interested
- [QUIZ] Test your understanding of SQL - Part 3the test set comes with sql lessons that give you lots of useful knowledge.
- [QUIZ] Test your understanding of SQL - Part 4let's try our knowledge with multiple choice questions about sql database management system.
- [QUIZ] Test your understanding of SQL - Part 5multiple-choice questions on sql help you familiarize and review useful knowledge for work and learning sql language.
- [QUIZ] Test your understanding of SQL - Part 6in order to serve your work and your study, along with sql lessons, quantrimang offers a variety of useful questions.
- [QUIZ] Test your understanding of SQL - Part 7part 7 of the sql quiz goes into the sql practice exercises that follow the previous period.
- Test of CSS knowledge - Part 5set of multiple choice questions about css programming language, invite readers to test their knowledge on this topic. with 15 questions including many answers, choose the best answer.